home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / pcl / src-16f.lha / tools / sample-wrapper < prev    next >
Encoding:
Text File  |  1992-08-05  |  418 b   |  16 lines

  1. #!/bin/sh
  2. #
  3. # Set up CMUCLLIB environment variable to point to run-time files.
  4. CMUCLLIB=/<<your-cmucl-path>>/lib
  5. export CMUCLLIB
  6.  
  7. #
  8. # If /tmp is a "tmpfs" filesystem (mounted on "swap") then uncomment the
  9. # following two lines, and fill in an alternate path:
  10. #CMUCL_EMPTYFILE=/<<your-temp-path>>/empty
  11. #export CMUCL_EMPTYFILE
  12.  
  13. #
  14. # Run Lisp with these environment variables set.
  15. exec /<<your-cmucl-path>>/bin/lisp "$@"
  16.